home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / OWLPORTH.PAK / FILEMENU.RC < prev    next >
Text File  |  1997-05-06  |  883b  |  31 lines

  1. // ObjectWindows - (C) Copyright 1992 by Borland International
  2.  
  3. FILECOMMANDS  MENU LOADONCALL MOVEABLE PURE DISCARDABLE
  4. BEGIN
  5.   POPUP "&File"
  6.   BEGIN
  7.     MenuItem  "&New", CM_FILENEW
  8.     MenuItem  "&Open...", CM_FILEOPEN
  9.     MenuItem  "&Save", CM_FILESAVE
  10.     MenuItem  "Save &As...", CM_FILESAVEAS
  11.     MenuItem  SEPARATOR
  12.     MenuItem  "E&xit", CM_EXIT
  13.   END
  14.   POPUP "&Edit"
  15.   BEGIN
  16.     MenuItem  "&Undo\aAlt+BkSp", CM_EDITUNDO
  17.     MenuItem  SEPARATOR
  18.     MenuItem  "&Cut\aShift+Del", CM_EDITCUT
  19.     MenuItem  "C&opy\aCtrl+Ins", CM_EDITCOPY
  20.     MenuItem  "&Paste\aShift+Ins", CM_EDITPASTE
  21.     MenuItem  "&Delete\aDel", CM_EDITDELETE
  22.     MenuItem  "C&lear All\aCtrl+Del", CM_EDITCLEAR
  23.   END
  24.   POPUP "&Search"
  25.   BEGIN
  26.     MenuItem  "&Find...", CM_EDITFIND
  27.     MenuItem  "&Replace...", CM_EDITREPLACE
  28.     MenuItem  "&Next\aF3", CM_EDITFINDNEXT
  29.   END
  30. END
  31.